From: Jim Blandy Date: Sat, 20 Mar 1993 22:58:21 +0000 (+0000) Subject: * systime.h (EMACS_HAS_USECS): #define this if HAVE_TIMEVAL is X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~96771 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=722687f5c7994bb2f25c2644e5ed59a4be35f2ee;p=emacs.git * systime.h (EMACS_HAS_USECS): #define this if HAVE_TIMEVAL is #defined. --- diff --git a/src/systime.h b/src/systime.h index d6b1898c7f1..36538598481 100644 --- a/src/systime.h +++ b/src/systime.h @@ -84,6 +84,8 @@ extern long timezone; #ifdef HAVE_TIMEVAL +#define EMACS_HAS_USECS + #define EMACS_TIME struct timeval #define EMACS_SECS(time) ((time).tv_sec + 0) #define EMACS_USECS(time) ((time).tv_usec + 0)